home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
ARGONET
/
PD
/
PROGRAMMING
/
LCLINT2.SPK
/
test
/
test_b
/
tests2_2
/
c
/
enumbool
< prev
next >
Wrap
Text File
|
1996-08-28
|
143b
|
14 lines
typedef enum { false = 0, true } bool;
bool f (bool b)
{
if (b)
{
return ( 3 > 4);
}
else
{
return false;
}
}